home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / cool_balls.swf / scripts / DefineButton2_23 / BUTTONCONDACTION on(press).as
Encoding:
Text File  |  2006-06-13  |  449 b   |  21 lines

  1. on(press){
  2.    _root.s[3].start();
  3.    _global.spherescore = 0;
  4.    _root.scores.scores_box.text = _global.spherescore;
  5.    _root.reinit();
  6.    _global.tmp = 4;
  7.    _root.onEnterFrame = function()
  8.    {
  9.       if(_global.tmp > 0)
  10.       {
  11.          _global.tmp = _global.tmp - 1;
  12.       }
  13.       else
  14.       {
  15.          _root.onEnterFrame = null;
  16.          _root.mydef.setlevel(_global.lev);
  17.          _root.exe.setPfieldSize();
  18.       }
  19.    };
  20. }
  21.